c# round to closest multiple

49

c# round to closest multiple -

int value = 30;
int factor = 16;
int nearestMultiple = 
        (int)Math.Round(
             (value / (double)factor),
             MidpointRounding.AwayFromZero
         ) * factor;

Comments

Submit
0 Comments